home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / T / TC Prog Guide.cpt / picture ƒ / anring.h < prev    next >
Text File  |  1991-02-16  |  496b  |  23 lines

  1. /*
  2. *    FILE:        anring.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    November 8, 1990
  5. *
  6. *    Defines animated ring of satellites for picture application.
  7. */
  8.  
  9. # ifndef    anring_h
  10. # define    anring_h
  11.  
  12. # include    "animate.h"
  13.  
  14. /******************************************************************
  15. *   animated ring.  Animated segment consisting of several
  16. *    satellites of any type.
  17. ******************************************************************/
  18. struct    Animated_Ring:Animated_Segment
  19. {
  20.     boolean            init(void);
  21. };
  22.  
  23. # endif